home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-07 / sellwise.txt < prev    next >
Text File  |  1991-10-02  |  5KB  |  128 lines

  1. LANtastic NOS v4.0 Technical Bulletin:
  2. SellWise version SW91-9.51 by Chuck Atkinson Programs
  3. 10.2.91
  4.     
  5.  
  6. The following information is provided courtesy of Chuck Atkinson Programs and 
  7. is a compilation of their own in-house compatibility testing.
  8.  
  9. Overview of setting up Multi-User SellWise with LANtastic v4.0
  10.   
  11. Method 1: SellWise on Server only.  Put SellWise program and data files on
  12.       the network drive.  All stations log onto the network drive and
  13.       run SellWise.
  14.  
  15. Method 2: SellWise on Server and all Stations.  Put SellWise program files
  16.       on all hard drives.  Data files are on the network drive.  All
  17.       stations run SellWise locally, and SellWise accesses the data on
  18.       the network drive.
  19.  
  20. For most hardware configurations, you will see better performance if you
  21. can use method 2.  Also note that you can mix the ideas from method 1 and
  22. method 2 on the same network.
  23.  
  24. Setup Method 1:
  25.  
  26. Execute the installation routine by typing B:LOAD or A:LOAD.  Install SellWise 
  27. from the server by typing SELL.  Tell the install program you want to install 
  28. station 1.  All other stations are created at this time.  In other words, 
  29. STA1.CAP is copied to STA2.CAP and to STA3.CAP etc.  Each of the STA?.CAP files 
  30. contains information such as printer setup, cash drawer, data path, etc.  You 
  31. can change any of the station settings using the SellWise Configuration Screen.
  32.  
  33. If all computers (including the server) reference the network drive as the
  34. same drive (ie. C:), then you will only need to run the install program once.
  35.  
  36. For each computer on the network that uses a drive that is different from the
  37. server (ie. computer uses J: to refer to server's C:), walk over to that
  38. computer, log onto the server's drive, and type:
  39.  
  40.          CD\SW
  41.          BTRIEVE /E
  42.          SWINSTAL
  43.  
  44. SWINSTAL will allow you to change the drive (to J: in our example).
  45.  
  46.  
  47. SellWise is shipped with a sample SELL.BAT file.  Delete the sample SELL.BAT.
  48. Create a new SELL.BAT using the example shown below.  The example is for a 
  49. 3 user SellWise.  We recommend placing the SELL.BAT file in a directory called
  50. \BAT and including this in your PATH.  This prevent SellWise updates from
  51. replacing your SELL.BAT.
  52.  
  53. @ECHO OFF
  54. SET NAME=AAAAAAAA
  55. NET STRING/LEFT=-8/RIGHT=-1 NAME !"NODEID"
  56. IF %NAME%==6EA00001 GOTO STATION1
  57. IF %NAME%==6EA00002 GOTO STATION2
  58. IF %NAME%==6EA00003 GOTO STATION3
  59. ECHO Could not find %NAME%
  60. GOTO END
  61.  
  62. : STATION1
  63. cd \sw
  64. btrieve /E
  65. SW 1
  66. GOTO END
  67.  
  68. : STATION2
  69. cd \sw
  70. btrieve /E
  71. SW 2
  72. GOTO END
  73.  
  74. : STATION3
  75. cd \sw
  76. btrieve /E
  77. SW 3
  78. GOTO END                                     
  79.  
  80. : END
  81.  
  82.  
  83. Setup Method 2:
  84.  
  85. Decide which station number you would like to assign to each computer.
  86. We usually assign 1 to the server and 2 etc. to the workstations.
  87.  
  88. For each computer, simply install SellWise from the floppy with B:LOAD or
  89. A:LOAD.  After the LOAD has completed, type SELL.  When asked for Automatic
  90. Installation, select No.  When asked for the station number, enter your
  91. decision from above.  When asked for the data path, enter the drive and data
  92. path of where all computers will access the data (ie. the server's drive
  93. J:\SW\DATA).  During the install process you will see the data files being
  94. created only on the first computer.  The following computers will simply open
  95. the existing data files.  When asked to run SellWise Now, enter No.
  96.  
  97. Note that it does not matter in which order you install SellWise.  Nor does it
  98. matter if you install on the server first or workstation first.
  99.  
  100. Although not required, you can clean up each computer's directory by
  101. deleting the unneeded STA?.CAP files.  For example, on station 3, you could
  102. delete STA1.CAP STA2.CAP STA4.CAP etc.  You only need one STA?.CAP file 
  103. on each computer.
  104.  
  105. For each computer create a SELL.BAT file on the local drive (ie. C:).  Here
  106. is an example for station 3:  
  107.  
  108.     BTRIEVE /E
  109.     SW 3
  110.  
  111. The ideal directory to place the SELL.BAT file in a \BAT directory with your
  112. path including \BAT.
  113.  
  114. Now run SELL.BAT on each computer.  At the main menu in the lower left
  115. corner you can verify that each station is unique.  If there are any two
  116. stations that have the same number then you probably need to check your
  117. SELL.BAT files.  There is no problem having two or more stations with the
  118. same station number.  It could, however, be confusing to see identical
  119. station numbers on various sales reports.
  120.  
  121.  
  122.  
  123. ARTISOFT, Inc. makes no warranties as to the completeness or accuracy of this 
  124. document.  LANtastic is a trademark of ARTISOFT, Inc.  Brand names and product 
  125. names are trademarks or registered trademarks of their respective companies.
  126.  
  127.  
  128.